價格:免費
更新日期:2019-03-17
檔案大小:880k
目前版本:3.6.2a
版本需求:Android 2.2 以上版本
官方網站:mailto:alpha64.dec@gmail.com
This is a command-line calculator. Type numerical expression to
calculate instead of using button to push like a pocket calculator.
Type ? for quick usage.
For example, to calculate "(3+4)*5", just type
(3+4)*5
followed by return key, so that you will get the result.
3.500000000000e+01
[numbers]
xxxx = decimal(float), xxxxH = hex, xxxxB = binary,
xxxK = xxx*1E3 (T, G, M, K, m, u, n, p are available),
@{0..9} = memory, @ = @0, PI = 3.1415.....,
x27 = ASCIIcode of (ex. x27@ = 64)
xxx,xxx,xxx = ignore comma in decimal
[functions & operations]
SQR, EXP, LOG, SIN, COS, TAN, ATAN, DEG, RAD, INT, ABS
^(involution), !(not), *, /, %(mod), +, -, &(and), |(or), #(xor)
<<, >>(shift operator)
<, <=, >, >=, =, <> (comparison operator)
[user defined function]
FNC = .. define function
"N" = count of paramater in the function (N >= 0)
{M} represends "M"th parameter (0 <= M < N)
ex. "f(x, y) = SQR(x^2 + y^2)" is ....
FNC f[2] = SQR({0}^2+{1}^2)
x --> {0}, y --> {1}, parameter count is "2"
"f(3, 4)" is calculated to "5"
[other commands]
@{0..9} = .. put into the memory
@SHIFT {ON/OFF} ......... Turn on/off Memory shift
DEC, HEX, BIN, FLOAT .... change display format
FREAD/FWRITE filename ... import/export user defined function"
FNC ? ......................... show defined function
[batch processing]
BATCH = ;<...>;<...> .... define batch process
ex. "BATCH=@*100;@+5;@*3;HEX;@"
BATCH ......................... execute batch job
BATCH ? ....................... show batch definition
ECHO {ON/OFF} ................. prompt echo
QUIT .......................... program terminate
BYE ........................... program terminate and write profile